home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
273_01
/
strxform.cc
< prev
next >
Wrap
Text File
|
1987-10-04
|
249b
|
11 lines
str_xform(char *str,char from,char to)
/* This function will transform all characters in the string pointed to
by *str that are the same as the from character to the to char.
*/
{
while(*str) {
if(*str==from) *str=to;
str++;
}
}